home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-1.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Thing_1" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include"metals.inc"
- background { Gray10 }
- camera { location < 0, 5, -5 > look_at <0,-1.3,0> }
- light_source { < 0, 10, -10 > color rgb < 2, 2, 2 > }
-
- //------------------------------------------------------------------->
- //
- // Build it and show it.
-
- #include "thing-1.inc"
-
- object { Thing_1 }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-